home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / GIFLIB12.ARJ / RAW2GIF.DOC < prev    next >
Text File  |  1991-05-13  |  1KB  |  37 lines

  1.             Raw2Gif
  2.             -------
  3.  
  4. Program to convert RAW image data into GIF files. Only one image can be
  5. handled. The RAW image file, assumes to hold one pixel color in one byte,
  6. and therefore the file size must be Width times Height as specified by the
  7. -s option below.
  8.  
  9. Usage:
  10. ------
  11.  
  12. Usage: Raw2Gif [-q] -s Width Height [-p ColorMapFile] [-h] RawFile
  13.  
  14.   If no RawFile is given, Raw2Gif will try to read stdin for RAW data.
  15. Gif File is dumped to stdout.
  16.  
  17. Memory required:
  18. ----------------
  19.  
  20. Line.
  21.  
  22.  
  23. Options:
  24. --------
  25.  
  26. 1. [-q] : quite mode. Default off on MSDOS, on on unix. Controls printout
  27.    of running scan lines. Use -q- to turn off.
  28. 2. -s Width Height : the dimensions of the image MUST be specified in the
  29.    command line. The RAW image file size must be exactly Width times Height
  30.    bytes (each byte is one pixel color).
  31. 3. [-p ColorMapFile] : Color map to load for given RAW image. This file has
  32.    4 integers in line (ColorIndex Red Green Blue), and the ColorIndex is
  33.    in order starting from 1. See GifClrMp, which can also use/create these
  34.    bitmap files. If no color map is specified, uses the EGA 16 color pallete
  35.    as default color map.
  36. 4. [-h] : print one command line help, similar to Usage above.
  37.